home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
mxlibs
/
sbvox
/
voxdrv.pas
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1994-10-28
|
357 b
|
11 lines
unit VOXDrv;
{
The CT-VOICE driver has to be aligned on a segment boundary in order for it
to work. The only way to force this using Turbo Pascal is to put it into a
separate unit. To get CT-VOICE.OBJ, run SETUP.BAT.
}
interface
procedure CTVOICE;
implementation
procedure CTVOICE; external; {$L CT-VOICE.OBJ}
end.